home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue66 / Construc / CorbaClient.dpr < prev    next >
Encoding:
Text File  |  2001-01-03  |  197 b   |  12 lines

  1. program CorbaClient;
  2. uses
  3.   Forms,
  4.   ClientForm in 'ClientForm.pas' {Form1};
  5.  
  6. {$R *.RES}
  7.  
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.